home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 November / CPNL0711.ISO / boekhoud / finan / BADGER finance v1.0 beta 2.exe / xampplite / phpMyAdmin / libraries / engines / memory.lib.php < prev    next >
PHP Script  |  2005-12-06  |  544b  |  25 lines

  1. <?php
  2. /* $Id: memory.lib.php,v 1.1 2005/12/07 10:01:43 cybot_tm Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4. /**
  5.  * the MEMORY (HEAP) storage engine
  6.  */
  7. class PMA_StorageEngine_memory extends PMA_StorageEngine
  8. {
  9.     /**
  10.      * returns array with variable names dedicated to MyISAM storage engine
  11.      *
  12.      * @return  array   variable names
  13.      */
  14.     function getVariables()
  15.     {
  16.         return array(
  17.             'max_heap_table_size' => array(
  18.                 'type'  => PMA_ENGINE_DETAILS_TYPE_SIZE,
  19.             ),
  20.         );
  21.     }
  22. }
  23.  
  24. ?>
  25.